home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdlib / abs.c < prev    next >
Encoding:
Text File  |  1995-10-10  |  61 b   |  6 lines

  1. int abs(int x)
  2. {
  3.     if(x>=0) return(x); else return(-x);
  4. }
  5.  
  6.